home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource2 / sclib_2 / 2_6 / v6n6088c.txt < prev    next >
Text File  |  1995-11-01  |  237b  |  9 lines

  1.  \NLETTER\6.6\CURVES3.PRGProgram 3
  2.     y = y1 + 0.5;
  3.     for (xi=x1; xi<=x2; xi++)
  4.     {
  5.         yi = trunc(y);
  6.         plot(xi,yi);
  7.         y += m;
  8.     }
  9.